home *** CD-ROM | disk | FTP | other *** search
/ Monster Media 1994 #2 / Monster Media No. 2 (Monster Media)(1994).ISO / prog_c / dbpp20.zip / DBPPOBJT.HPP < prev    next >
Text File  |  1994-05-09  |  837b  |  36 lines

  1. /*
  2.    Library: DataBase++ Ver. 2.00.
  3.    File:    DBPPOBJT.HPP
  4.    
  5.    Purpose: Declaration for class DBObject.
  6.             DBObject is the base class for all classes in DataBase++.
  7.             By using this as a base class, it is possible to add all the
  8.             required class types in DataBase++ to the DBArray class without
  9.             modification. This class essentially does nothing in and of itself,
  10.             but may in future releases.
  11.             
  12.    Notice:  Copyright (C), 1992 - 1994, Jeff Stapleton. All rights reserved.
  13. */
  14.  
  15. #ifndef __DBPPOBJT_HPP
  16. #define __DBPPOBJT_HPP 
  17.  
  18. #include <string.h>
  19.  
  20. typedef unsigned int uint;
  21. typedef int BOOL;
  22.  
  23. #define FALSE 0
  24. #define TRUE  1
  25.  
  26. class DBObject
  27. {
  28.    public:
  29.  
  30.       DBObject() {}
  31.       virtual ~DBObject() {} 
  32. };
  33.  
  34. #endif // __DBPPOBJT_HPP 
  35.  
  36.